added some development tools
[windows-sources.git] / developer / Samples / NET 4.6 / Samples for Parallel / MandelbrotFractals / MandelbrotFractals_CppCli / MandelbrotFractals.cpp
blob3fce260ee3e4ce65f8f93458bd44ad14984fc51d
1 //--------------------------------------------------------------------------
2 //
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 //
5 // File: MandelbrotFractals.cpp
6 //
7 //--------------------------------------------------------------------------
9 #include "stdafx.h"
10 #include "Form1.h"
12 using namespace MandelbrotFractals;
14 [STAThreadAttribute]
15 int main(array<System::String ^> ^args)
17 // Enabling Windows XP visual effects before any controls are created
18 Application::EnableVisualStyles();
19 Application::SetCompatibleTextRenderingDefault(false);
21 // Create the main window and run it
22 Application::Run(gcnew Form1());
23 return 0;